Text File | 1996-03-25 | 904 b | 21 lines | [TEXT/MPS ]
(* Install fat app if both types of code are already present, or if were running on a Mac
that doesn't already have the code for that type of Mac, or if on an external volume *)
if (sixtyEightKCodeIsPresent and powerPCCodeIsPresent) or (sixtyEightKCodeIsPresent and machineHasPowerPC) or (powerPCCodeIsPresent and not machineHasPowerPC) or externalVolSelected then
AddUserDescription( kEasyMsgForAnyMac )
AddPackages( kUpdateFullFatAppPkg )
(* otherwise, install for the Mac type on which we are running. *)
else if not machineHasPowerPC then
AddUserDescription( kEasyMsgFor68KMac )
AddPackages( kOverWrite68KAppPkg )
else if machineHasPowerPC then
AddUserDescription( kEasyMsgForPPCMac )
AddPackages( kUpdatePowerMacAppPkg )
(* if it's not a 68K or PPC Mac, then raise an error because we don't know what it is. *)